(0) Obligation:

Runtime Complexity TRS:
The TRS R consists of the following rules:

a__from(X) → cons(mark(X), from(s(X)))
a__first(0, Z) → nil
a__first(s(X), cons(Y, Z)) → cons(mark(Y), first(X, Z))
a__sel(0, cons(X, Z)) → mark(X)
a__sel(s(X), cons(Y, Z)) → a__sel(mark(X), mark(Z))
mark(from(X)) → a__from(mark(X))
mark(first(X1, X2)) → a__first(mark(X1), mark(X2))
mark(sel(X1, X2)) → a__sel(mark(X1), mark(X2))
mark(cons(X1, X2)) → cons(mark(X1), X2)
mark(s(X)) → s(mark(X))
mark(0) → 0
mark(nil) → nil
a__from(X) → from(X)
a__first(X1, X2) → first(X1, X2)
a__sel(X1, X2) → sel(X1, X2)

Rewrite Strategy: FULL

(1) DecreasingLoopProof (EQUIVALENT transformation)

The following loop(s) give(s) rise to the lower bound Ω(2n):
The rewrite sequence
mark(from(X)) →+ cons(mark(mark(X)), from(s(mark(X))))
gives rise to a decreasing loop by considering the right hand sides subterm at position [0,0].
The pumping substitution is [X / from(X)].
The result substitution is [ ].

The rewrite sequence
mark(from(X)) →+ cons(mark(mark(X)), from(s(mark(X))))
gives rise to a decreasing loop by considering the right hand sides subterm at position [1,0,0].
The pumping substitution is [X / from(X)].
The result substitution is [ ].

(2) BOUNDS(2^n, INF)